home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SYMBOL / Symbol Processors / Shift / symbol-scroll next >
Text File  |  1998-10-23  |  314b  |  12 lines

  1. symbol-scroll value symbol-pattern
  2.  
  3. If value is positive, symbol-scroll moves the last symbol to the first for value times. If value is negative, first symbol is moved to the last value times. 
  4.  
  5. (symbol-scroll 1 '(a b c))
  6. --> (c a b)
  7.  
  8. (symbol-scroll -1 '(a b c))
  9. --> (b c a)
  10.  
  11. (symbol-scroll 2 '(a b c))
  12. --> (b c a)